Python | Build a REST API using Flask
Prerequisite: Introduction to Rest API...
read more
Sending Emails Using API in Flask-Mail
Python, being a powerful language don’t need any external library to import and offers a native library to send emails- “SMTP lib”. “smtplib” creates a Simple Mail Transfer Protocol client session object which is used to send emails to any valid email id on the internet. This article revolves around how we can send bulk customised emails to a group of people with the help of Flask....
read more
Django Channels – Introduction and Basic Setup
Django is a powerful Python framework for web development. It is fast, secure, and reliable. Channels allow Django projects to handle HTTP along with asynchronous protocols like WebSockets, MQTT, chatbots, and more....
read more
Post/Redirect/Get (PRG) Design Pattern
Prerequisite- HTTP Protocol, GET and POST requests using Python...
read more
Deploying a TensorFlow 2.1 CNN model on the web with Flask
When starting to learn Machine Learning, one of the biggest issues people face is deploying whatever they make to the web for easier demonstration/use. This article will help those beginners bridge the gap between creating a TensorFlow model and deploying it on the web with Flask and hopefully gain some insight on the issues TensorFlow and Flask have....
read more
How to build a URL Shortener with Django ?
Building a URL Shortener, Is one of the Best Beginner Project to Hone your Skills. In this article, we have shared the steps to build a URL shortener using Django Framework. To know more about Django visit – Django Tutorial...
read more
Best practices for Professional Developer – Django Framework
Django is an open-source, Python-based framework for building web applications. To make our Django code more readable and efficient we should follow a certain set of rules/practices. These should not be seen as the right way or the only way to work with Django, but instead best practices to work with Django framework...
read more
Why do people prefer Selenium with Python?
Selenium is a strong set of tools that firmly supports the quick development of test automation of web applications. It offers a set of testing functions that are specially designed to the requirements of testing of a web application. These functions are reliable facilitating various options for positioning UI elements and making a comparison of the expected outcomes against the real application behaviour. It makes use of various scripting languages for its test automation....
read more
Blockchain as a Service Platform – Easy to use
With the growth of the crypto market, the demand for blockchain has increased and people are seeking various possibilities of growth and taking interest in blockchain as a service platform. There are so many applications of blockchain which are the best things of blockchain as a tool platform for business. Its applications are making the scope of Blockchain as a tool platform broader day by day over time and blockchain as a service platform can be used independently from a cryptocurrency....
read more
Python – Alternate List elements
Given 2 lists, print the element in zig-zag manner, i.e print similar indices of lists and then proceed to next....
read more
Detect Cat Faces in Real-Time using Python-OpenCV
Face Detection is a technology to identify faces from the image. We use Python’s OpenCV for this. We can also use Face Detection in the case of Animals too. If one can take a close look at the OpenCV repository, the haar cascades directory to be specific (where the OpenCV stores all its pre-trained haar classifiers to detect various objects, body parts, etc.), there are two files:...
read more
Python | Reversed Order keys in dictionary
While working with dictionary, we can sometimes, have a problem in which we require to print dictionaries in the reversed order of their occurrence. Let’s discuss certain ways in which this problem can be solved....
read more